@charset "utf-8";
.view-cont{
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.view-cont .q_agree{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 1.4rem;
}
.view-cont .q_agree a {
    display: block;
    cursor: pointer;
    color: var(--grey-color-);
}
#privacy {
    display: none;
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.privacy-policy {
    padding: 2rem;
    border-radius: 1rem;
    max-width: 50rem;
    width: calc(100% - 10rem);
    max-height: 80%;
    overflow-y: auto;
}
.close-button {
    display: block;
    width: calc(100% - 10rem);
    max-width: 50rem;
    background-color: white;
    margin: 5rem auto 0;
    padding: 1rem 3rem;
    cursor: pointer;
    background-color: white;
    color: var(--black-color);
    border: none;
    border-radius: 0.6rem;
    margin-bottom: 3rem;
}
.recruit_model_250321 .radio-group, .recruit_model_250321 .checkbox-group{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}
.recruit_model_250321 .radio-group label, .checkbox-group label {
    display: inline-block;
    padding: 1.4rem;
    margin: 0.6rem;
    border: 0;
    border-radius: 0.6rem;
    cursor: pointer;
    background-color: #7564ff;
    color: #fff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    font-size: 1.4rem;
    flex-grow: 1;
    white-space: nowrap;
}

.recruit_model_250321 .radio-group input[type="radio"],
.recruit_model_250321 .checkbox-group input[type="checkbox"] {
    display: none;
}

.recruit_model_250321 .radio-group input[type="radio"]:checked + label,
.recruit_model_250321 .checkbox-group input[type="checkbox"]:checked + label {
    background-color: #3828b8;
    color: #fff;
    font-weight: 800;
}

.recruit_model_250321 .radio-group label:hover,
.recruit_model_250321 .checkbox-group label:hover {
    background-color: #3828b8;
    color: #fff;
}

.recruit_model_250321{
    background-color: #bcd8ff;
    padding: 3rem;
}
.recruit_model_250321 .form-box{
    border-radius: 2rem;
    background-color: #e8f1ff;
    padding: 3rem;
}
.recruit_model_250321 .form-box > ul{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.recruit_model_250321 .form-box .db_info ul .db_th{
    font-weight: 800;
    display: inline-block;
    padding: 0 1rem;
    position: relative;
    margin-bottom: 2rem;
}
.recruit_model_250321 .form-box .db_info ul .db_th::before,
.recruit_model_250321 .form-box .db_info ul .db_th::after{
    content: '';
    width: 2px;
    height: 100%;
    top: 0;
    display: block;
    background-color: #accaf1;
    position: absolute;
}
.recruit_model_250321 .form-box .db_info ul .db_th::before{
    left: 0;
}
.recruit_model_250321 .form-box .db_info ul .db_th::after{
    right: 0;
}
.db_info_write ul{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.db_info_write ul .db_th{
    width: 8rem;
    border: 2px solid #7564fe;
    color: #7564fe;
    padding: 1rem;
    text-align: center;
    border-radius: 100rem;
    font-weight: 600;
}
.db_info_write ul .db_input{
    width: 100%;
}
.db_info_write ul .db_input input{
    border-radius: 1rem;
}
.db_info_write ul input{
    width: 100%;
}
.recruit_model_250321 .q_agree{
    margin-top: 3rem;
}
.confirm-box {
    display: flex;
    justify-content: center; /* 버튼 중앙 정렬 */
    align-items: center; /* 수직 중앙 정렬 */
    width: 100%; /* 부모 컨테이너 너비 */
    padding: 1rem 0;
}

/* 버튼 래퍼 */
.q_confirm {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #6171fc, #a03ce0);
    width: auto;
    border-radius: 1rem;
    padding: 2rem 4rem;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    font-size: 3.4rem;
}
.q_confirm span{
    color: #fef855;
}
.q_confirm input[type="submit"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
@media (max-width: 768px) {

    .privacy-policy{
        margin-top: 0;
    }

}